home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / misc / gethelp / source / makefile < prev    next >
Makefile  |  1999-06-14  |  387b  |  28 lines

  1. #
  2. #               makefile for searchhtml
  3. #
  4.  
  5. CC = gcc
  6.  
  7. LDFLAGS =
  8. CFLAGS = -noixemul -Wall -mstackextend
  9.  
  10. all: searchhtml
  11.  
  12. searchhtml: report.o dirlist.o gui.o get_title.o main.c
  13.     $(CC) $(CFLAGS) $^ -o $@
  14.  
  15. report.o: report.c
  16.     $(CC) $(CFLAGS) $^ -c 
  17.  
  18. dirlist.o: dirlist.c
  19.     $(CC) $(CFLAGS) $^ -c
  20.  
  21. gui.o: gui.c gui.h
  22.     $(CC) $(CFLAGS) $^ -c
  23.  
  24. get_title.o: get_title.c
  25.     $(CC) $(CFLAGS) $^ -c
  26.  
  27.  
  28.